Entities
Entities for the MasterChef V2 subgraph are all listed below.
MasterChef
Field | Type | Description |
---|
id | ID | chef address |
totalAllocPoint | BigInt | total SUSHI allocation point |
pools | [Pools] | array of pools |
poolCount | BigInt | number of pools |
timestamp | BigInt | timestamp |
block | BigInt | block |
Pool
Field | Type | Description |
---|
id | ID | index of pool |
masterChef | MasterChef | MasterChef |
pair | Bytes | pair address |
rewarder | Rewarder | rewarder |
allocPoint | BigInt | allocation point |
lastRewardBlock | BigInt | last reward block |
accSushiPerShare | BigInt | accumulated SUSHI per share |
users | [User] | array of users |
userCount | BigInt | number of users |
slpBalance | BigDecimal | SLP balance |
timestamp | BigInt | timestamp |
block | BigInt | block |
Rewarder
Field | Type | Description |
---|
id | ID | rewarder address |
rewardToken | Bytes | reward token address |
rewardPerSecond | BigInt | rewards per second |
timestamp | BigInt | timestamp |
block | BigInt | block |
User
Field | Type | Description |
---|
id | ID | pool ID concatenated with user address |
address | Bytes | user address |
pool | Pool | pool |
amount | BigInt | amount |
rewardDebt | BigInt | amount of reward debt |
sushiHarvested | BigDecimal | amount of SUSHI harvested |
timestamp | BigInt | timestamp |
block | BigInt | block |